Multiply Strings
Question
Given two numbers represented as strings, return multiplication of the numbers as a string.
Note:
- The numbers can be arbitrarily large and are non-negative.
- Converting the input string to integer is NOT allowed.
- You should NOT use internal library such as BigInteger.
Analysis
https://discuss.leetcode.com/topic/30508/easiest-java-solution-with-graph-explanation
-
-
Code
|
|
Excel Sheet Column Title
Question
Given a positive integer, return its corresponding column title as appear in an Excel sheet.
For example:
|
|
Analysis
26进制转10进制
Code
Mine
|
|
Better
|
|
###